home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / amiga / raytrace / real3d / rl_dvlpr.lha / Source / dspdrvbase.h < prev    next >
C/C++ Source or Header  |  1992-07-22  |  548b  |  34 lines

  1. /*
  2.  * dspdrvbase.h -- C include file defining the library base
  3.  *
  4.  */
  5.  
  6. #ifndef R3D_DSPDRV_BASE_H
  7. #define R3D_DSPDRV_BASE_H
  8.  
  9. #ifndef  EXEC_TYPES_H
  10. #include  <exec/types.h>
  11. #endif   EXEC_TYPES_H
  12.  
  13. #ifndef  EXEC_LISTS_H
  14. #include  <exec/lists.h>
  15. #endif   EXEC_LISTS_H
  16.  
  17. #ifndef  EXEC_LIBRARIES_H
  18. #include <exec/libraries.h>
  19. #endif   EXEC_LIBRARIES_H
  20.  
  21. /* library data structures */
  22.  
  23. struct R3DDspDrvBase 
  24. {   struct Library LibNode;
  25.     UBYTE  Flags;
  26.     UBYTE  pad;
  27.  
  28.     ULONG  SysLib;
  29.     ULONG  DosLib;
  30.     ULONG  SegList;
  31. };
  32.  
  33. #endif R3D_DSPDRV_BASE_H
  34.